home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Borland Plateform / Turbo C v3.0 / INTRO7.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-17  |  375 b   |  19 lines

  1. // INTRO7.CPP--Example from Chapter 3, " An Introduction to C++"
  2.  
  3. #include <iostream.h>
  4.  
  5. int main()
  6. {
  7.     float result;
  8.     result = 1.0 + 2.0 * 3.0 / 4.0;
  9.     cout << '\n' << result;
  10.     result = 1.0 / 2.0 + 3.0;
  11.     cout << '\n' << result;
  12.     result = (1.0 + 2.0) / 3.0;
  13.     cout << '\n' << result;
  14.     result = (1.0 + 2.0 / 3.0) + 4.0;
  15.     cout << '\n' << result;
  16.  
  17.    return 0;
  18. }
  19.